home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / x2ftp / msdos / libs / knowhow4 / blipxtab.h < prev    next >
C/C++ Source or Header  |  1994-10-10  |  1KB  |  35 lines

  1. #ifndef __BLOCK_ICON_PARADOX_TABLE_H_
  2. #define __BLOCK_ICON_PARADOX_TABLE_H_
  3.  
  4. #include "blpxtab.h"
  5. #include "icon.h"
  6.  
  7. class BlockIPXTable : public BlockPXTable
  8.     {
  9.     public:
  10.     Icon* f_first_button;
  11.     Icon* f_next_button;
  12.     Icon* rotate_button;
  13.     Icon* edit_button;
  14.  
  15.     BlockIPXTable(rect coordinates,           // Screen cells
  16.            char* tabName,                     // Table name
  17.            char* fName = "",                  // File for swapping
  18.            char* h = "",                      // Header text
  19.            int s = 0,                         // Shadow, pixels
  20.            BORDERS b_type = SHOW_BORDER,      // Border type
  21.            BORDERS hdr_b_type = SHOW_BORDER,  // Border around header
  22.            int res = FIXED,                   // Resize status
  23.            int hdr_pat = 0,                   // Attention! No window pattern.
  24.            int elem_pat = 0,                  // Buttons
  25. // Use last 3 arguments for creating new table.
  26.            int fNo = 0,               // Number of fields in table
  27.            char** fields = NULL,      // Fields names array
  28.            char** types = NULL);       // Fields types array
  29.  
  30.     virtual void rearrange();
  31.     };
  32.  
  33.  
  34. #endif __BLOCK_ICON_PARADOX_TABLE_H_
  35.